home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / language / slperl.zoo / atarist / perldb.pl < prev    next >
Perl Script  |  1992-07-05  |  16KB  |  596 lines

  1. package DB;
  2.  
  3. # modified Perl debugger, to be run from Emacs in perldb-mode
  4. # Ray Lischner (uunet!mntgfx!lisch) as of 5 Nov 1990
  5. # Johan Vromans -- upgrade to 4.0 pl 10
  6.  
  7. $header = '$RCSfile: perldb.pl,v $$Revision: 4.0.1.3 $$Date: 92/06/08 13:43:57 $';
  8. #
  9. # This file is automatically included if you do perl -d.
  10. # It's probably not useful to include this yourself.
  11. #
  12. # Perl supplies the values for @line and %sub.  It effectively inserts
  13. # a do DB'DB(<linenum>); in front of every place that can
  14. # have a breakpoint.  It also inserts a do 'perldb.pl' before the first line.
  15. #
  16. # $Log:    perldb.pl,v $
  17. # Revision 4.0.1.3  92/06/08  13:43:57  lwall
  18. # patch20: support for MSDOS folded into perldb.pl
  19. # patch20: perldb couldn't debug file containing '-', such as STDIN designator
  20. # Revision 4.0.1.2  91/11/05  17:55:58  lwall
  21. # patch11: perldb.pl modified to run within emacs in perldb-mode
  22. # Revision 4.0.1.1  91/06/07  11:17:44  lwall
  23. # patch4: added $^P variable to control calling of perldb routines
  24. # patch4: debugger sometimes listed wrong number of lines for a statement
  25. # Revision 4.0  91/03/20  01:25:50  lwall
  26. # 4.0 baseline.
  27. # Revision 3.0.1.6  91/01/11  18:08:58  lwall
  28. # patch42: @_ couldn't be accessed from debugger
  29. # Revision 3.0.1.5  90/11/10  01:40:26  lwall
  30. # patch38: the debugger wouldn't stop correctly or do action routines
  31. # Revision 3.0.1.4  90/10/15  17:40:38  lwall
  32. # patch29: added caller
  33. # patch29: the debugger now understands packages and evals
  34. # patch29: scripts now run at almost full speed under the debugger
  35. # patch29: more variables are settable from debugger
  36. # Revision 3.0.1.3  90/08/09  04:00:58  lwall
  37. # patch19: debugger now allows continuation lines
  38. # patch19: debugger can now dump lists of variables
  39. # patch19: debugger can now add aliases easily from prompt
  40. # Revision 3.0.1.2  90/03/12  16:39:39  lwall
  41. # patch13: perl -d didn't format stack traces of *foo right
  42. # patch13: perl -d wiped out scalar return values of subroutines
  43. # Revision 3.0.1.1  89/10/26  23:14:02  lwall
  44. # patch1: RCS expanded an unintended $Header in lib/perldb.pl
  45. # Revision 3.0  89/10/18  15:19:46  lwall
  46. # 3.0 baseline
  47. # Revision 2.0  88/06/05  00:09:45  root
  48. # Baseline version 2.0.
  49. #
  50.  
  51. if (-e "/dev/tty") {
  52.     $console = "/dev/tty";
  53.     $rcfile=".perldb";
  54. }
  55. else {
  56.     $console = "con";
  57.     $rcfile="perldb.ini";
  58. }
  59.  
  60. open(IN, "<$console") || open(IN,  "<&STDIN");    # so we don't dingle stdin
  61. open(OUT,">$console") || open(OUT, ">&STDOUT");    # so we don't dongle stdout
  62. select(OUT);
  63. $| = 1;                # for DB'OUT
  64. select(STDOUT);
  65. $| = 1;                # for real STDOUT
  66. $sub = '';
  67.  
  68. # Is Perl being run from Emacs?
  69. $emacs = $main'ARGV[$[] eq '-emacs';
  70. shift(@main'ARGV) if $emacs;
  71.  
  72. $header =~ s/.Header: ([^,]+),v(\s+\S+\s+\S+).*$/$1$2/;
  73. print OUT "\nLoading DB routines from $header\n";
  74. print OUT ("Emacs support ",
  75.        $emacs ? "enabled" : "available",
  76.        ".\n");
  77. print OUT "\nEnter h for help.\n\n";
  78.  
  79. sub DB {
  80.     &save;
  81.     ($package, $filename, $line) = caller;
  82.     $usercontext = '($@, $!, $[, $,, $/, $\) = @saved;' .
  83.     "package $package;";        # this won't let them modify, alas
  84.     local($^P) = 0;            # don't debug our own evals
  85.     local(*dbline) = "_<$filename";
  86.     $max = $#dbline;
  87.     if (($stop,$action) = split(/\0/,$dbline{$line})) {
  88.     if ($stop eq '1') {
  89.         $signal |= 1;
  90.     }
  91.     else {
  92.         $evalarg = "\$DB'signal |= do {$stop;}"; &eval;
  93.         $dbline{$line} =~ s/;9($|\0)/$1/;
  94.     }
  95.     }
  96.     if ($single || $trace || $signal) {
  97.     if ($emacs) {
  98.         print OUT "\032\032$filename:$line:0\n";
  99.     } else {
  100.         print OUT "$package'" unless $sub =~ /'/;
  101.         print OUT "$sub($filename:$line):\t",$dbline[$line];
  102.         for ($i = $line + 1; $i <= $max && $dbline[$i] == 0; ++$i) {
  103.         last if $dbline[$i] =~ /^\s*(}|#|\n)/;
  104.         print OUT "$sub($filename:$i):\t",$dbline[$i];
  105.         }
  106.     }
  107.     }
  108.     $evalarg = $action, &eval if $action;
  109.     if ($single || $signal) {
  110.     $evalarg = $pre, &eval if $pre;
  111.     print OUT $#stack . " levels deep in subroutine calls!\n"
  112.         if $single & 4;
  113.     $start = $line;
  114.       CMD:
  115.     while ((print OUT "  DB<", $#hist+1, "> "), $cmd=&gets) {
  116.         {
  117.         $single = 0;
  118.         $signal = 0;
  119.         $cmd eq '' && exit 0;
  120.         chop($cmd);
  121.         $cmd =~ s/\\$// && do {
  122.             print OUT "  cont: ";
  123.             $cmd .= &gets;
  124.             redo CMD;
  125.         };
  126.         $cmd =~ /^q$/ && exit 0;
  127.         $cmd =~ /^$/ && ($cmd = $laststep);
  128.         push(@hist,$cmd) if length($cmd) > 1;
  129.         ($i) = split(/\s+/,$cmd);
  130.         eval "\$cmd =~ $alias{$i}", print OUT $@ if $alias{$i};
  131.         $cmd =~ /^h$/ && do {
  132.             print OUT "
  133. T        Stack trace.
  134. s        Single step.
  135. n        Next, steps over subroutine calls.
  136. r        Return from current subroutine.
  137. c [line]    Continue; optionally inserts a one-time-only breakpoint 
  138.         at the specified line.
  139. <CR>        Repeat last n or s.
  140. l min+incr    List incr+1 lines starting at min.
  141. l min-max    List lines.
  142. l line        List line;
  143. l        List next window.
  144. -        List previous window.
  145. w line        List window around line.
  146. l subname    List subroutine.
  147. f filename    Switch to filename.
  148. /pattern/    Search forwards for pattern; final / is optional.
  149. ?pattern?    Search backwards for pattern.
  150. L        List breakpoints and actions.
  151. S        List subroutine names.
  152. t        Toggle trace mode.
  153. b [line] [condition]
  154.         Set breakpoint; line defaults to the current execution line; 
  155.         condition breaks if it evaluates to true, defaults to \'1\'.
  156. b subname [condition]
  157.         Set breakpoint at first line of subroutine.
  158. d [line]    Delete breakpoint.
  159. D        Delete all breakpoints.
  160. a [line] command
  161.         Set an action to be done before the line is executed.
  162.         Sequence is: check for breakpoint, print line if necessary,
  163.         do action, prompt user if breakpoint or step, evaluate line.
  164. A        Delete all actions.
  165. V [pkg [vars]]    List some (default all) variables in package (default current).
  166. X [vars]    Same as \"V currentpackage [vars]\".
  167. < command    Define command before prompt.
  168. > command    Define command after prompt.
  169. ! number    Redo command (default previous command).
  170. ! -number    Redo number\'th to last command.
  171. H -number    Display last number commands (default all).
  172. q or ^D        Quit.
  173. p expr        Same as \"print DB'OUT expr\" in current package.
  174. = [alias value]    Define a command alias, or list current aliases.
  175. command        Execute as a perl statement in current package.
  176.  
  177. ";
  178.             next CMD; };
  179.         $cmd =~ /^t$/ && do {
  180.             $trace = !$trace;
  181.             print OUT "Trace = ".($trace?"on":"off")."\n";
  182.             next CMD; };
  183.         $cmd =~ /^S$/ && do {
  184.             foreach $subname (sort(keys %sub)) {
  185.             print OUT $subname,"\n";
  186.             }
  187.             next CMD; };
  188.         $cmd =~ s/^X\b/V $package/;
  189.         $cmd =~ /^V$/ && do {
  190.             $cmd = 'V $package'; };
  191.         $cmd =~ /^V\b\s*(\S+)\s*(.*)/ && do {
  192.             $packname = $1;
  193.             @vars = split(' ',$2);
  194.             do 'dumpvar.pl' unless defined &main'dumpvar;
  195.             if (defined &main'dumpvar) {
  196.             &main'dumpvar($packname,@vars);
  197.             }
  198.             else {
  199.             print DB'OUT "dumpvar.pl not available.\n";
  200.             }
  201.             next CMD; };
  202.         $cmd =~ /^f\b\s*(.*)/ && do {
  203.             $file = $1;
  204.             if (!$file) {
  205.             print OUT "The old f command is now the r command.\n";
  206.             print OUT "The new f command switches filenames.\n";
  207.             next CMD;
  208.             }
  209.             if (!defined $_main{'_<' . $file}) {
  210.             if (($try) = grep(m#^_<.*$file#, keys %_main)) {
  211.                 $file = substr($try,2);
  212.                 print "\n$file:\n";
  213.             }
  214.             }
  215.             if (!defined $_main{'_<' . $file}) {
  216.             print OUT "There's no code here anything matching $file.\n";
  217.             next CMD;
  218.             }
  219.             elsif ($file ne $filename) {
  220.             *dbline = "_<$file";
  221.             $max = $#dbline;
  222.             $filename = $file;
  223.             $start = 1;
  224.             $cmd = "l";
  225.             } };
  226.         $cmd =~ /^l\b\s*(['A-Za-z_]['\w]*)/ && do {
  227.             $subname = $1;
  228.             $subname = "main'" . $subname unless $subname =~ /'/;
  229.             $subname = "main" . $subname if substr($subname,0,1) eq "'";
  230.             ($file,$subrange) = split(/:/,$sub{$subname});
  231.             if ($file ne $filename) {
  232.             *dbline = "_<$file";
  233.             $max = $#dbline;
  234.             $filename = $file;
  235.             }
  236.             if ($subrange) {
  237.             if (eval($subrange) < -$window) {
  238.                 $subrange =~ s/-.*/+/;
  239.             }
  240.             $cmd = "l $subrange";
  241.             } else {
  242.             print OUT "Subroutine $1 not found.\n";
  243.             next CMD;
  244.             } };
  245.         $cmd =~ /^w\b\s*(\d*)$/ && do {
  246.             $incr = $window - 1;
  247.             $start = $1 if $1;
  248.             $start -= $preview;
  249.             $cmd = 'l ' . $start . '-' . ($start + $incr); };
  250.         $cmd =~ /^-$/